home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / inf_src.arc / INFER.H < prev    next >
C/C++ Source or Header  |  1986-03-14  |  835b  |  30 lines

  1.  
  2. /*****************************************************************
  3. **                                **
  4. **      Inference -- (C) Copyright 1985 George Hageman    **
  5. **                                **
  6. **        user-supported software:                **
  7. **                                **
  8. **            George Hageman                **
  9. **            P.O. Box 11234                **
  10. **            Boulder, Colorado 80302            **
  11. **                                **
  12. *****************************************************************/
  13.  
  14. /*
  15. **    the following are the global common variables which
  16. **    are used in the inference engine...
  17. **
  18. **    all routines except inference.c should have this
  19. **    file included.
  20. */
  21.  
  22. #define    MAX_KNOWN    500
  23.  
  24. int    numHypot, hypStack[MAX_HYPS],strBuffOfst ;
  25. char    strBuff[MAX_STRING_BUFF] ;
  26. int    ruleBuffOfst ;
  27. int    knownTrue[MAX_KNOWN], knownFalse[MAX_KNOWN] ;
  28. int    numTrue, numFalse ;
  29. struct  rule_statement_r ruleBuff[MAX_RULE_STATEMENTS] ;
  30.